home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 359 / dice / dice.lzh / lib / fd / unlink.c < prev    next >
C/C++ Source or Header  |  1990-03-27  |  184b  |  18 lines

  1.  
  2. /*
  3.  *  UNLINK.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10.  
  11. int
  12. unlink(name)
  13. char *name;
  14. {
  15.     return(remove(name));
  16. }
  17.  
  18.